type github.com/andybalholm/brotli/flate.literalNode

14 uses

	github.com/andybalholm/brotli/flate (current package)
		huffman_code.go#L20: 	freqcache []literalNode
		huffman_code.go#L26: type literalNode struct {
		huffman_code.go#L57: func maxNode() literalNode { return literalNode{math.MaxUint16, math.MaxInt32} }
		huffman_code.go#L131: func (h *huffmanEncoder) bitCounts(list []literalNode, maxBits int32) []int32 {
		huffman_code.go#L245: func (h *huffmanEncoder) assignEncodingAndSize(bitCount []int32, list []literalNode) {
		huffman_code.go#L276: 		h.freqcache = make([]literalNode, maxNumLit+1)
		huffman_code.go#L284: 			list[count] = literalNode{uint16(i), f}
		huffman_code.go#L287: 			list[count] = literalNode{}
		huffman_code.go#L291: 	list[len(freq)] = literalNode{}
		huffman_code.go#L311: type byLiteral []literalNode
		huffman_code.go#L313: func (s *byLiteral) sort(a []literalNode) {
		huffman_code.go#L326: type byFreq []literalNode
		huffman_code.go#L328: func (s *byFreq) sort(a []literalNode) {